home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.3 (Developer)…68k, x86, SPARC, PA-RISC] / NeXTSTEP 3.3 Dev Intel.iso / NextDeveloper / Headers / g++ / bool.h < prev    next >
C/C++ Source or Header  |  1995-02-06  |  285b  |  14 lines

  1. // Defining TRUE and FALSE is usually a Bad Idea,
  2. // because you will probably be inconsistent with anyone
  3. // else who had the same clever idea.
  4. // Therefore:  DON'T USE THIS FILE.
  5.  
  6. #ifndef _bool_h
  7. #define _bool_h 1
  8.  
  9. #undef FALSE
  10. #undef TRUE
  11. enum bool { FALSE = 0, TRUE = 1 };
  12.  
  13. #endif
  14.